home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac Magazin/MacEasy 12
/
Mac Magazin and MacEasy Magazine CD - Issue 12.iso
/
Sharewarebibliothek
/
Anwendungen
/
Musik
/
MIDI Pack'en 1.1.2
/
Sample Scripts
/
26 Change port connection
< prev
Wrap
Text File
|
1995-03-22
|
421b
|
23 lines
tell application "MIDI Pack'en"
activate -- if needed
set flag to true
repeat while flag
try
copy Word 1 of Text 1 of Window 1 to str
on error
set flag to false
end try
if flag then
if str is "Modem" then
Connect Modem Port true
Connect Printer Port false
else
Connect Modem Port false
Connect Printer Port true
end if
Transmit
Close Window 1
end if
end repeat
end tell